TStreamedData
The user type returned from the called web service.
TServiceState
User state information.
LEADTOOLS WebForms and AJAX (Leadtools.Web.Services assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
ServiceStreamer<TStreamedData,TServiceState> Class
See Also  Members  
Leadtools.Web.Services Namespace : ServiceStreamer<TStreamedData,TServiceState> Class



Provides a generic implementation for streaming data from web services and synchronizing with the UI (user interface) updates.

Object Model

ServiceStreamer<TStreamedData,TServiceState> Class

Syntax

Visual Basic (Declaration) 
Public MustInherit Class ServiceStreamer
     (Of TStreamedData,TServiceState) 
Visual Basic (Usage)Copy Code
Dim instance As ServiceStreamer(Of TStreamedData,TServiceState)
C# 
public abstract class ServiceStreamer<TStreamedData,TServiceState> 
C++/CLI 
generic<typename TStreamedData>
generic<typename TServiceState>
public ref class ServiceStreamer abstract 

Type Parameters

TStreamedData
The user type returned from the called web service.
TServiceState
User state information.

Remarks

This is an abstract class which you need to override and implement the abstract methods in order to use. The class allow inheritors to specify the number of concurrent web calls they want make at once and synchronize this with updating the UI with the streamed data.

Inheritance Hierarchy

System.Object
   Leadtools.Web.Services.ServiceStreamer<TStreamedData,TServiceState>

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also